home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000419_fdc@panix.com_Fri Aug 25 10:52:52 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: reader2.panix.com!reader1.panix.com!panix!not-for-mail
  2. From: Frank da Cruz <fdc@panix.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Writing a clipboard to file?
  5. Date: Fri, 25 Aug 2006 14:51:26 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 30
  8. Message-ID: <slrneeu3je.1q9.fdc@panix2.panix.com>
  9. References: <BywHg.1246$9u.18195@ursa-nb00s0.nbnet.nb.ca>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix2.panix.com
  12. X-Trace: reader2.panix.com 1156517486 6624 166.84.1.2 (25 Aug 2006 14:51:26 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Fri, 25 Aug 2006 14:51:26 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15550
  17.  
  18. On 2006-08-25, SCOTT CAISSIE <scottac@nb.sympatico.ca> wrote:
  19. : Using K95 2.1.3.
  20. : I was wondering if it was possible to write the clipboard contents (copying 
  21. : info), directly into a file.
  22. :
  23. K95 doesn't have a \v(clipboard) variable that you can refer to
  24. programmatically, but there is a keyboard verb, \Kpaste, that pastes from 
  25. the clipoard.  By default, this is assigned to Shift-Insert:
  26.  
  27.  . If K95 is in its terminal screen, then \Kpaste sends the clipboard
  28.    contents to the host (if the clipboard contains text).
  29.  
  30.  . If K95 is in its command screen, \Kpaste inserts the text from the
  31.    clipboard where the cursor is.
  32.  
  33. Of course, if you have Notepad or other text editor open, you can also paste
  34. into it.  But these are all manual operations.  Offhand, I can't think of a
  35. way to write the clipboard contents directly into a file.  Perhaps in the
  36. next release we can consider adding a \v(clipboard) variable.
  37.  
  38. : Basically what I'm trying to do, is copy info from certain files which K95 
  39. : can't directly read properly, then have it write to a .txt file and 
  40. : immidately process that.
  41. : *The info being copied is just raw text.
  42. :
  43. Maybe there is a way do this after all.  The file interface
  44. (FOPEN/FREAD/FWRITE/FCLOSE) has a lot of options.  If can describe the
  45. problem in more detail maybe I can suggest a way around it.
  46.  
  47. - Frank